home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / uae-0.000 / uae-0 / uae-0.6.0 / dos-null.c < prev    next >
C/C++ Source or Header  |  1996-05-04  |  688b  |  65 lines

  1.  /*
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * DOS debug only interface.
  5.   *
  6.   * (c) 1995 Bernd Schmidt
  7.   * (c) 1996 Gustavo Goedert
  8.   */
  9.  
  10. #include "sysconfig.h"
  11. #include "sysdeps.h"
  12.  
  13. #include "xwin.h"
  14.  
  15. xcolnr xcolors[4096];
  16.  
  17. struct vidbuf_description gfxvidinfo;
  18.  
  19. void flush_line(int y)
  20. {
  21. }
  22.  
  23. void flush_block(int a, int b)
  24. {
  25.     abort();
  26. }
  27.  
  28. void flush_screen(int a, int b)
  29. {
  30. }
  31.  
  32. static void init_colors(void)
  33. {
  34. }
  35.  
  36. int buttonstate[3] = { 0, 0, 0 };
  37. int lastmx, lastmy;
  38. int newmousecounters = 0;
  39.  
  40. int graphics_init(void)
  41. {
  42. }
  43.  
  44. void graphics_leave(void)
  45. {
  46. }
  47.  
  48. void handle_events(void)
  49. {
  50. }
  51.  
  52. int debuggable(void)
  53. {
  54.     return 0;
  55. }
  56.  
  57. int needmousehack(void)
  58. {
  59.     return 0;
  60. }
  61.  
  62. void LED(int on)
  63. {
  64. }
  65.